home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 52 / Amiga Format AFCD52 (Issue 136, May 2000).iso / -screenplay- / shareware / freeciv / data / civ1 / governments.ruleset < prev    next >
Text File  |  2000-02-29  |  17KB  |  538 lines

  1.  
  2. ; Modifying this file:
  3. ; You should not modify this file except to make bugfixes or
  4. ; for other "maintenance".  If you want to make custom changes
  5. ; you should create a new datadir subdirectory and copy this file
  6. ; into that directory, and then modify that copy.  Then use the
  7. ; command "set governments <mysubdir>" in the server to have freeciv
  8. ; use your new customized file.
  9.  
  10. ; Note that the freeciv AI may not cope well with anything more
  11. ; than minor changes.
  12.  
  13. ; TODO: check values really match Civ1!
  14.  
  15. [datafile]
  16. description="Civilization I governments data for Freeciv"
  17. options="1.9"
  18.  
  19. [governments]
  20. default="Despotism"
  21. when_anarchy="Anarchy"
  22. ai_goal="Republic"
  23.  
  24. ai_tech_hints = { "tech", "turns_factor", "const_factor", "get_first", "done"
  25.     "Code of Laws", 150,   0, 1, 0
  26.     "The Republic",  90,  90, 0, 1
  27.     "Monarchy",       0, 150, 0, 0
  28. }
  29.  
  30. ; Below: The individual government types, one per section.
  31. ;
  32. ; The actual tag used (the * in [government_*]) does not matter, except 
  33. ; it must be unique within this file, and it may be used in debug 
  34. ; output when reading this file.
  35. ;
  36. ; For the "official" rulesets, the order of these sections should not
  37. ; be changed because that would break backward compatability with 
  38. ; savegames.
  39. ;
  40. ; Notes on fields:
  41.  
  42. ; name        = name of this government form as seen by user 
  43. ; tech_req    = required advance, names from techs.ruleset, or special:
  44. ;               "None" => available from start
  45. ; graphic     = tag specifing preferred graphic
  46. ; graphic_alt = alternate graphics tag if preferred is not found;
  47. ;               should be a standard tag if preferred is not;
  48. ;        otherwise may be "-"
  49. ; flags       = special effects; see government.c for strings
  50. ; hints       = hints to the AI about how to use / behave with government
  51. ; subgoal     = another government name or "-"; if main gov is nation or 
  52. ;        AI goal government, aim for subgoal first.
  53.  
  54. ; martial_law_max  = maximum number of units which can enforce martial law
  55. ;             in the city
  56. ; martial_law_per  = number of unhappy citizens made content by each
  57. ;             enforcer unit
  58. ; max_single_rate  = maximum which can be allocated to single one of
  59. ;             taxation/luxuries/science
  60. ; empire_size_mod  = signed modifier added to cityfactor to determine
  61. ;             empire size when base unhappiness is increased
  62. ; empire_size_inc  = if non-zero, reduce one content citizen for
  63. ;             every empire_size_inc cities once #cities
  64. ;             exceeds (cityfactor + empire_size_mod)
  65. ; civil_war_chance = percentage change of civil war when capital is captured
  66. ;             (and player has enough cities etc)
  67. ; rapture_size     = a happy city will celebrate when its size is
  68. ;             this value or larger
  69.  
  70. ; unit_*_factor = factor applied to individual unit upkeep for different 
  71. ;          upkeep forms
  72. ; unit_free_*   = base unit upkeep cost which the city gets "free"; only
  73. ;              upkeep above this value applies; special value: "City_Size"
  74.  
  75. ; corruption:
  76.  
  77. ; _level           = percentage factor applied to corruption; 
  78. ;             if 0, Courthouse effect changes
  79. ; _modifier        = non-zero divisor to corruption; higher value 
  80. ;             means less corruption 
  81. ;             TODO: why have both level and modifier??
  82. ; _fixed_distance  = if non-zero, used instead of actual calculation of 
  83. ;             distance from Palace; also used for distances in 
  84. ;             unit and city bribe cost calculations
  85. ; _distance_factor = multiply distance by this factor for corruption 
  86. ;             (but not bribe costs)
  87. ; _extra_distance  = add this to distance after applying distance factor
  88.  
  89. ; production_*_bonus   = added to base production for each worked tile;
  90. ;             second value is used instead when city is celebrating
  91. ; production_*_penalty = if non-zero, tile production above this amount is 
  92. ;             reduced by one; second value used when celebrating
  93.  
  94. ; ruler_titles = ruler titles by nation, "-" is default, and non-matched 
  95. ;             nations are ignored 
  96.  
  97. ; helptext = optional help text string; should escape all raw newlines 
  98. ;         so that xgettext parsing works
  99.  
  100. ;------------------------------------------------------------------------
  101. [government_anarchy]
  102.  
  103. name        = _("Anarchy")
  104. tech_req    = "None"
  105. graphic     = "gov.anarchy"
  106. graphic_alt = "-"
  107. flags       = "-"
  108. hints       = "Favors_Growth"
  109. subgoal        = "-"
  110.  
  111. martial_law_max  = 100  ; unlimited
  112. martial_law_per  = 1
  113. max_single_rate  = 100  ; rates are irrelevant under Anarchy; use 100
  114.                 ; to avoid unnecessary changes during revolution
  115. civil_war_chance = 90
  116. empire_size_mod  = -5
  117. empire_size_inc  = 0
  118. rapture_size     = 3
  119.  
  120. unit_unhappy_factor = 0
  121. unit_shield_factor  = 1
  122. unit_food_factor    = 1
  123. unit_gold_factor    = 0   ; ??
  124.  
  125. unit_free_unhappy = 0
  126. unit_free_shield  = "City_Size"
  127. unit_free_food    = 0
  128. unit_free_gold    = 0
  129.  
  130. corruption_level           = 100
  131. corruption_modifier        = 40
  132. corruption_fixed_distance  = 0
  133. corruption_distance_factor = 1 
  134. corruption_extra_distance  = 0 
  135.  
  136. production_trade_bonus    = 0, 0
  137. production_shield_bonus   = 0, 0
  138. production_food_bonus     = 0, 0
  139.  
  140. production_trade_penalty  = 2, 0
  141. production_shield_penalty = 2, 0
  142. production_food_penalty   = 2, 0
  143.  
  144. ruler_male_title = _("Mr.")
  145. ruler_female_title = _("Ms.")
  146.  
  147. helptext = _("\
  148. Anarchy is simply the absence of any recognizable government.\
  149.  Citizens are disorganized and unproductive, and will spend all\
  150.  income as quickly as possible, rather than paying taxes or\
  151.  conducting research.\
  152. \n\n\
  153. Anarchy offers slightly less corruption than Despotism, but slightly\
  154.  more unhappiness.\
  155. \n\n\
  156. Settlers consume 1 food per turn under Anarchy.  Squares which would\
  157.  normally yield more than 2 units of food, shields or trade suffer\
  158.  a 1-unit penalty (e.g., an irrigated grassland square which would\
  159.  normally yield 3 food only yields 2 food while you are in Anarchy).\
  160.  (This penalty is removed if the city is celebrating; see Happiness.)\
  161. \n\n\
  162. Under Anarchy, each of your cities can support a number of military\
  163.  units equal to its size without paying shields for upkeep.\
  164.  (Additional units require 1 production shield each.)\
  165. \n\n\
  166. You may impose martial law under Anarchy: each military unit inside\
  167.  a city will keep one unhappy citizen content.  (Or at least, unhappy\
  168.  citizens will act content, and will not cause disorder.)\
  169. ")
  170.  
  171. ;------------------------------------------------------------------------
  172. [government_despotism]
  173.  
  174. name        = _("Despotism")
  175. tech_req    = "None"
  176. graphic     = "gov.despotism"
  177. graphic_alt = "-"
  178. flags       = "-"
  179. hints       = "Favors_Growth"
  180. subgoal        = "-"
  181.  
  182. martial_law_max  = 100  ; unlimited
  183. martial_law_per  = 1
  184. max_single_rate  = 100
  185. civil_war_chance = 80
  186. empire_size_mod  = -4
  187. empire_size_inc  = 0
  188. rapture_size     = 3
  189.  
  190. unit_unhappy_factor = 0 
  191. unit_shield_factor  = 1
  192. unit_food_factor    = 1
  193. unit_gold_factor    = 1 
  194.  
  195. unit_free_unhappy = 0
  196. unit_free_shield  = "City_Size"
  197. unit_free_food    = 0
  198. unit_free_gold    = 0
  199.  
  200. corruption_level           = 100
  201. corruption_modifier        = 27
  202. corruption_fixed_distance  = 0
  203. corruption_distance_factor = 2 
  204. corruption_extra_distance  = 3 
  205.  
  206. production_trade_bonus    = 0, 0
  207. production_shield_bonus   = 0, 0
  208. production_food_bonus     = 0, 0
  209.  
  210. production_trade_penalty  = 2, 0
  211. production_shield_penalty = 2, 0
  212. production_food_penalty   = 2, 0
  213.  
  214. ruler_male_title = _("Emperor")
  215. ruler_female_title = _("Empress")
  216.  
  217. helptext = _("\
  218. Under Despotism, you are the absolute ruler of your people.  Your\
  219.  control over your citizens is maintained largely by martial law.\
  220. \n\n\
  221. Despotism suffers the highest level of corruption of all forms of\
  222.  government.\
  223. \n\n\
  224. Settlers consume 1 food per turn under Despotism.  Squares which\
  225.  would normally yield more than 2 units of food, shields or trade\
  226.  suffer a 1-unit penalty (e.g., an irrigated grassland square which\
  227.  would normally yield 3 food only yields 2 food while you are under\
  228.  Despotic rule).  (This penalty is removed if the city is\
  229.  celebrating; see Happiness.)\
  230. \n\n\
  231. Under Despotism, each of your cities can support a number of\
  232.  military units equal to its size without paying shields for\
  233.  upkeep.  (Additional units require 1 production shield each.)\
  234. \n\n\
  235. You may impose martial law under Despotism: each military unit\
  236.  inside a city will keep one unhappy citizen content.  (Or at least,\
  237.  unhappy citizens will act content, and will not cause disorder.)\
  238. ")
  239.  
  240. ;------------------------------------------------------------------------
  241. [government_monarchy]
  242.  
  243. name        = _("Monarchy")
  244. tech_req    = "Monarchy"
  245. graphic     = "gov.monarchy"
  246. graphic_alt = "-"
  247. flags       = "-"
  248. hints       = "Favors_Growth"
  249. subgoal        = "-"
  250.  
  251. martial_law_max  = 100  ; unlimited
  252. martial_law_per  = 1
  253. max_single_rate  = 100
  254. civil_war_chance = 70
  255. empire_size_mod  = -3
  256. empire_size_inc  = 0
  257. rapture_size     = 3
  258.  
  259. unit_unhappy_factor = 0
  260. unit_shield_factor  = 1
  261. unit_food_factor    = 1
  262. unit_gold_factor    = 1 
  263.  
  264. unit_free_unhappy = 0
  265. unit_free_shield  = 0
  266. unit_free_food    = 0
  267. unit_free_gold    = 0
  268.  
  269. corruption_level           = 100
  270. corruption_modifier        = 67
  271. corruption_fixed_distance  = 0
  272. corruption_distance_factor = 1 
  273. corruption_extra_distance  = 0 
  274.  
  275. production_trade_bonus    = 0, 1
  276. production_shield_bonus   = 0, 0
  277. production_food_bonus     = 0, 0
  278.  
  279. production_trade_penalty  = 0, 0
  280. production_shield_penalty = 0, 0
  281. production_food_penalty   = 0, 0
  282.  
  283. ruler_male_title = _("King")
  284. ruler_female_title = _("Queen")
  285.  
  286. helptext = _("\
  287. Under Monarchy, a king or queen serves as a hereditary figurehead\
  288.  for your government.\
  289. \n\n\
  290. Monarchy suffers the same small amount of corruption that the\
  291.  Republic does.\
  292. \n\n\
  293. Settlers consume 1 food per turn under Monarchy.\
  294. \n\n\
  295. If a city governed by a Monarchy is celebrating, it will receive a\
  296.  bonus of 1 trade in each square which already produces at least 1\
  297.  trade.  See Happiness for details.\
  298. \n\n\
  299. Under Monarchy, your cities can support up to 3 military units\
  300.  without paying shields for upkeep.  (Additional units require 1\
  301.  production shield each.)\
  302. \n\n\
  303. You may impose limited martial law under Monarchy: each military\
  304.  unit in a city, up to a maximum of 3, will keep one unhappy citizen\
  305.  content.\
  306. ")
  307.  
  308. ;------------------------------------------------------------------------
  309. [government_communism]
  310.  
  311. name        = _("Communism")
  312. tech_req    = "Communism"
  313. graphic     = "gov.communism"
  314. graphic_alt = "-"
  315. flags       = "Build_Veteran_Diplomats"
  316. hints       = "Favors_Growth"
  317. subgoal        = "Monarchy"
  318.  
  319. martial_law_max  = 100  ; unlimited
  320. martial_law_per  = 1
  321. max_single_rate  = 100
  322. civil_war_chance = 50
  323. empire_size_mod  = -2
  324. empire_size_inc  = 0
  325. rapture_size     = 3
  326.  
  327. unit_unhappy_factor = 0
  328. unit_shield_factor  = 1
  329. unit_food_factor    = 1
  330. unit_gold_factor    = 1 
  331.  
  332. unit_free_unhappy = 0
  333. unit_free_shield  = 0
  334. unit_free_food    = 0
  335. unit_free_gold    = 0
  336.  
  337. corruption_level           = 50
  338. corruption_modifier        = 80
  339. corruption_fixed_distance  = 10
  340. corruption_distance_factor = 1 
  341. corruption_extra_distance  = 0 
  342.  
  343. production_trade_bonus    = 0, 1
  344. production_shield_bonus   = 0, 0
  345. production_food_bonus     = 0, 0
  346.  
  347. production_trade_penalty  = 0, 0
  348. production_shield_penalty = 0, 0
  349. production_food_penalty   = 0, 0
  350.  
  351. ruler_male_title = _("Comrade")
  352. ruler_female_title = _("Comrade")
  353.  
  354. helptext = _("\
  355. A Communist government is based on the ideal that all people are\
  356.  equal.  All goods are owned by the state, rather than by private\
  357.  citizens.  Communism gives a balance between military and commercial\
  358.  styles of government.\
  359. \n\n\
  360. Under Communism, corruption does not vary by distance from the\
  361.  capital; all cities (including the capital) have a modest amount\
  362.  of corruption.  In addition, Communist cities more than 10 squares\
  363.  away from the capital are considered to be only 10 squares away when\
  364.  computing the cost of inciting a revolt (see Units, Diplomat).\
  365. \n\n\
  366. Settlers consume 2 food per turn under Communism.\
  367. \n\n\
  368. If a city governed by Communism is celebrating, it will receive a\
  369.  bonus of 1 trade in each square which already produces at least 1\
  370.  trade.  See Happiness for details.\
  371. \n\n\
  372. Diplomats and Spies created under Communism are always veterans.\
  373. \n\n\
  374. Under Communism, your cities can support up to 3 military units\
  375.  without paying shields for upkeep.  (Additional units require 1\
  376.  production shield each.)\
  377. \n\n\
  378. You impose limited but efficient martial law under Communism.  Each\
  379.  military unit inside a city, up to a maximum of 3, will keep 2\
  380.  unhappy citizens content.\
  381. ")
  382.  
  383. ;------------------------------------------------------------------------
  384. [government_republic]
  385.  
  386. name        = _("Republic")
  387. tech_req    = "The Republic"
  388. graphic     = "gov.republic"
  389. graphic_alt = "-"
  390. flags       = "Has_Senate", "Rapture_City_Growth"
  391. hints       = "Is_Nice"
  392. subgoal        = "Monarchy"
  393.  
  394. martial_law_max  = 0
  395. martial_law_per  = 0
  396. max_single_rate  = 100
  397. civil_war_chance = 40
  398. empire_size_mod  = -1
  399. empire_size_inc  = 0
  400. rapture_size     = 3
  401.  
  402. unit_unhappy_factor = 1
  403. unit_shield_factor  = 1
  404. unit_food_factor    = 2
  405. unit_gold_factor    = 1 
  406.  
  407. unit_free_unhappy = 0
  408. unit_free_shield  = 0
  409. unit_free_food    = 0
  410. unit_free_gold    = 0
  411.  
  412. corruption_level           = 100
  413. corruption_modifier        = 67
  414. corruption_fixed_distance  = 0
  415. corruption_distance_factor = 1 
  416. corruption_extra_distance  = 0 
  417.  
  418. production_trade_bonus    = 1, 1
  419. production_shield_bonus   = 0, 0
  420. production_food_bonus     = 0, 0
  421.  
  422. production_trade_penalty  = 0, 0
  423. production_shield_penalty = 0, 0
  424. production_food_penalty   = 0, 0
  425.  
  426. ruler_male_title = _("Consul")
  427. ruler_female_title = _("Consul")
  428.  
  429. helptext = _("\
  430. Under a Republican government, citizens hold an election to select a\
  431.  representative who will govern them; since elected leaders must\
  432.  remain popular to remain in control, citizens are given a greater\
  433.  degree of freedom.  Citizens under the Republic become unhappy\
  434.  easily, but the self-sufficiency of your citizens allows high levels\
  435.  of trade.\
  436. \n\n\
  437. Cities under the Republic suffer a small amount of corruption.\
  438. \n\n\
  439. Settlers consume 2 food per turn under the Republic.  Squares with\
  440.  at least 1 trade resource get a trade bonus of 1 under the Republic.\
  441. \n\n\
  442. Republican cities which are celebrating grow at a rate of 1 citizen\
  443.  per turn; see Happiness for details.\
  444. \n\n\
  445. Under the Republic, military units require 1 production shield each\
  446.  for upkeep.  In addition the following units are considered\
  447.  aggressive units:\
  448. \n\n\
  449. - units with an attack strength greater than 0 which are not\
  450.  inside a city or inside a fortress within 3 squares of a friendly\
  451.  city\
  452. \n\n\
  453. - air units (including missiles and helicopters) and sea units\
  454.  with an attack strength greater than 0, regardless of their\
  455.  location\
  456. \n\n\
  457. The citizens of a city will tolerate 1 aggressive unit; subsequent\
  458.  units will generate 1 unhappy citizen each.\
  459. ")
  460.  
  461. ;------------------------------------------------------------------------
  462. [government_democracy]
  463.  
  464. name        = _("Democracy")
  465. tech_req    = "Democracy"
  466. graphic     = "gov.democracy"
  467. graphic_alt = "-"
  468. flags       = "Has_Senate", "Revolution_When_Unhappy", "Rapture_City_Growth"
  469. hints       = "Is_Nice"
  470. subgoal        = "Republic"
  471.  
  472. martial_law_max  = 0
  473. martial_law_per  = 0
  474. max_single_rate  = 100
  475. civil_war_chance = 30
  476. empire_size_mod  = 0
  477. empire_size_inc  = 0
  478. rapture_size     = 3
  479.  
  480. unit_unhappy_factor = 2
  481. unit_shield_factor  = 1
  482. unit_food_factor    = 2
  483. unit_gold_factor    = 1 
  484.  
  485. unit_free_unhappy = 0
  486. unit_free_shield  = 0
  487. unit_free_food    = 0
  488. unit_free_gold    = 0
  489.  
  490. corruption_level           = 0
  491. corruption_modifier        = 1
  492. corruption_fixed_distance  = 0
  493. corruption_distance_factor = 0 
  494. corruption_extra_distance  = 0 
  495.  
  496. production_trade_bonus    = 1, 1
  497. production_shield_bonus   = 0, 0
  498. production_food_bonus     = 0, 0
  499.  
  500. production_trade_penalty  = 0, 0
  501. production_shield_penalty = 0, 0
  502. production_food_penalty   = 0, 0
  503.  
  504. ruler_male_title = _("President")
  505. ruler_female_title = _("President")
  506.  
  507. helptext = _("\
  508. Under Democracy, citizens govern directly by voting on issues.\
  509.  Democracy offers the highest possible level of trade, but also\
  510.  offers the most potential for unhappiness.  There is no corruption\
  511.  during Democracy, but citizens become very upset during wars.\
  512. \n\n\
  513. Settlers consume 2 food per turn under Democracy.  Squares with\
  514.  at least 1 trade resource get a trade bonus of 1 under Democracy.\
  515. \n\n\
  516. Democratic cities which are celebrating grow at a rate of 1 citizen\
  517.  per turn; see Happiness for details.\
  518. \n\n\
  519. Under Democracy, military units require 1 production shield each for\
  520.  upkeep.  In addition the following units generate unhappiness:\
  521. \n\n\
  522. - Units with an attack strength greater than 0 which are not\
  523.  inside a city, or inside a fortress within 3 squares of a\
  524.  friendly city, generate 2 unhappy citizens.\
  525. \n\n\
  526. - Air/sea units with an attack strength greater than 0 which are\
  527.  inside a city or nearby fortress generate only 1 unhappy citizen.\
  528. \n\n\
  529. If a city remains in disorder more than 2 turns under Democratic\
  530.  rule, the citizens will spontaneously revolt and plunge your\
  531.  civilization into Anarchy.\
  532. \n\n\
  533. Because (happy) citizens of Democracy believe strongly in the\
  534.  government, their loyalty is unswerving.  Military units of\
  535.  Democratic civilizations cannot be bribed, and Democratic cities\
  536.  cannot be incited to revolt by enemy Diplomats and Spies.\
  537. ")
  538.